home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / GRAPHICS / FADERS.ZIP / TEST.ASM < prev    next >
Encoding:
Assembly Source File  |  1995-08-25  |  531 b   |  31 lines

  1. P286                                    ; Uses 286 instructions
  2. jumps                                   ; Let TASM handle out-of-range jumps
  3.  
  4. Extrn   Fadeout: FAR
  5. Extrn   Fadein : FAR
  6.  
  7. _Code   segment para public 'Code'
  8. assume  cs:_Code, ds:_Code, es:_Code, ss:_Stack
  9.  
  10. ProgStart:
  11.                      
  12.     Call Fadeout
  13.     xor ax,ax
  14.     int 16h
  15.     Call FadeIn
  16.  
  17.         mov ax,4c00h
  18.         int 21h
  19.  
  20. _Code   ends
  21. _Stack  segment para stack 'stack'
  22.         db      32 dup (?)
  23. _Stack  ends
  24.  
  25. End     ProgStart
  26.  
  27.  
  28.  
  29.  
  30.  
  31.